home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / Muddweller 1.2 / source code / Externals / USizerView.r < prev   
Encoding:
Text File  |  1992-02-26  |  927 b   |  44 lines  |  [TEXT/MPS ]

  1. #ifndef __TYPES.R__
  2. #include "Types.r"
  3. #endif
  4.  
  5. #ifndef __MacAppTypes__
  6. #include "MacAppTypes.r"
  7. #endif
  8.  
  9. #define cSizeViews            2300
  10.  
  11. /* Cursor resource IDs  */
  12. #define kVertSizingCursor    1300
  13. #define kHorzSizingCursor    1301
  14.  
  15. resource 'cmnu' (1001) {
  16.     1001,
  17.     textMenuProc,
  18.     allEnabled,
  19.     enabled,
  20.     "Buzzwords",
  21.     {
  22. /* [1] */    "Pane Resize", noIcon, noKey, noMark, plain, cSizeViews
  23.     }
  24. };
  25.  
  26. /* Vertical Pane Sizing Cursor */
  27. resource 'CURS' (kVertSizingCursor) {
  28.     $"0000 0000 0380 0380 0380 0BA0 1FF0 2388"
  29.     $"4384 2388 1FF0 0BA0 0380 0380 0380 0000",
  30.     $"0000 07C0 07C0 07C0 0FE0 1FF0 3FF8 7FFC"
  31.     $"FFFE 7FFC 3FF8 1FF0 0FE0 07C0 07C0 07C0",
  32.     {8, 7}
  33. };
  34.  
  35. /* Horizontal Pane Sizing Cursor */
  36. resource 'CURS' (kHorzSizingCursor) {
  37.     $"00 00 00 00 01 00 02 80 04 40 0C 60 04 40 7F FC"
  38.     $"7F FC 7F FC 04 40 0C 60 04 40 02 80 01",
  39.     $"00 00 01 00 03 80 07 C0 0F E0 1F F0 FF FE FF FE"
  40.     $"FF FE FF FE FF FE 1F F0 0F E0 07 C0 03 80 01",
  41.     {8, 7}
  42. };
  43.  
  44.